home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
-
- :start
- nocurs
- disp pcfiss3 1
- getkey svx
-
- if errorlevel 3 goto quit
- if errorlevel 2 goto vcopy
- if errorlevel 1 goto strike2
-
- :strike2
- s2
- goto start
-
- :vcopy
- disp pcfiss33 1
- getkey abcm
- if errorlevel 4 goto start
- if errorlevel 3 goto dskc
- if errorlevel 2 goto dskb
- if errorlevel 1 goto dska
-
- :dska
- cd vcopy
- cls
- echo Please insert a blank disk in drive A:
- pause
- copy *.* a:
- cd..
- goto start
-
- :dskb
- cd vcopy
- cls
- echo Please insert a blank disk in drive A:
- echo Also note: This will work with single floppy drive machines,
- echo just follow the DOS commands.
- pause
- copy *.* b:
- cd..
- goto start
-
- :dskc
- cd vcopy
- cls
- echo This will create a directory on you hard drive called UTILS.
- echo Don't panic if your computer tells you that it can't create the
- echo directory. It just means that your computer already has a directory
- echo called UTILS.
- pause
- md c:\utils
- pause
- copy *.* c:\utils
- cd..
- goto start
-
- :quit
- cls
- echo thankyou for using the PCF Cover Disk.
- cd..
- pause
-